home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / gnu / nethack.lha / nethack-3.1 / include / prop.h < prev    next >
C/C++ Source or Header  |  1993-01-17  |  1KB  |  60 lines

  1. /*    SCCS Id: @(#)prop.h    3.1    92/11/01    */
  2. /* Copyright (c) 1989 Mike Threepoint                  */
  3. /* NetHack may be freely redistributed.  See license for details. */
  4.  
  5. #ifndef PROP_H
  6. #define PROP_H
  7.  
  8. #define FIRE_RES        1
  9. #define COLD_RES        2
  10. #define SLEEP_RES        3
  11. #define DISINT_RES        4
  12. #define SHOCK_RES        5
  13. #define POISON_RES        6
  14. #define ADORNED            7
  15. #define REGENERATION        8
  16. #define SEARCHING        9
  17. #define SEE_INVIS        10
  18. #define INVIS            11
  19. #define TELEPORT        12
  20. #define TELEPORT_CONTROL    13
  21. #define POLYMORPH        14
  22. #define POLYMORPH_CONTROL    15
  23. #define LEVITATION        16
  24. #define STEALTH            17
  25. #define AGGRAVATE_MONSTER    18
  26. #define CONFLICT        19
  27. #define PROTECTION        20
  28. #define PROT_FROM_SHAPE_CHANGERS 21
  29. #define WARNING            22
  30. #define TELEPAT            23
  31. #define FAST            24
  32. #define STUNNED            25
  33. #define CONFUSION        26
  34. #define SICK            27
  35. #define BLINDED            28
  36. #define SLEEPING        29
  37. #define WOUNDED_LEGS        30
  38. #define STONED            31
  39. #define STRANGLED        32
  40. #define HALLUC            33
  41. #define HALLUC_RES        34
  42. #define FUMBLING        35
  43. #define JUMPING            36
  44. #define WWALKING        37
  45. #define HUNGER            38
  46. #define GLIB            39
  47. #define REFLECTING        40
  48. #define LIFESAVED        41
  49. #define ANTIMAGIC        42
  50. #define DISPLACED        43
  51. #define CLAIRVOYANT        44
  52. #define VOMITING        45
  53. #define ENERGY_REGENERATION    46
  54. #define MAGICAL_BREATHING    47
  55. #define HALF_SPDAM        48
  56. #define HALF_PHDAM        49
  57. #define LAST_PROP        (HALF_PHDAM)        /* the last property */
  58.  
  59. #endif /* PROP_H */
  60.